/******************************************************************************* * Copyright (c) 2012, Project: FP7-ICT-257930 Aniketos * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * - Neither the name of institution nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ******************************************************************************/ /** */ package eu.aniketos.mtm.model.mtm_di; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Diagram Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link eu.aniketos.mtm.model.mtm_di.DiagramElement#getExtension <em>Extension</em>}</li> * <li>{@link eu.aniketos.mtm.model.mtm_di.DiagramElement#getId <em>Id</em>}</li> * <li>{@link eu.aniketos.mtm.model.mtm_di.DiagramElement#getAnyAttribute <em>Any Attribute</em>}</li> * </ul> * </p> * * @see eu.aniketos.mtm.model.mtm_di.DiPackage#getDiagramElement() * @model abstract="true" * extendedMetaData="name='DiagramElement' kind='elementOnly'" * @generated */ public interface DiagramElement extends EObject { /** * Returns the value of the '<em><b>Extension</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Extension</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Extension</em>' containment reference. * @see #setExtension(ExtensionType) * @see eu.aniketos.mtm.model.mtm_di.DiPackage#getDiagramElement_Extension() * @model containment="true" * extendedMetaData="kind='element' name='extension' namespace='##targetNamespace'" * @generated */ ExtensionType getExtension(); /** * Sets the value of the '{@link eu.aniketos.mtm.model.mtm_di.DiagramElement#getExtension <em>Extension</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Extension</em>' containment reference. * @see #getExtension() * @generated */ void setExtension(ExtensionType value); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see eu.aniketos.mtm.model.mtm_di.DiPackage#getDiagramElement_Id() * @model id="true" dataType="org.eclipse.emf.ecore.xml.type.ID" * extendedMetaData="kind='attribute' name='id'" * @generated */ String getId(); /** * Sets the value of the '{@link eu.aniketos.mtm.model.mtm_di.DiagramElement#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); /** * Returns the value of the '<em><b>Any Attribute</b></em>' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Any Attribute</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Any Attribute</em>' attribute list. * @see eu.aniketos.mtm.model.mtm_di.DiPackage#getDiagramElement_AnyAttribute() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" * extendedMetaData="kind='attributeWildcard' wildcards='##other' name=':2' processing='lax'" * @generated */ FeatureMap getAnyAttribute(); } // DiagramElement